home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000182_news@columbia.edu_Mon Oct 23 21:23:19 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07313
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 23 Oct 1995 17:23:26 -0400
  3. Received: by apakabar.cc.columbia.edu id AA24218
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 23 Oct 1995 17:23:25 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Extracting path name of kermit take or init file
  9. Date: 23 Oct 1995 21:23:19 GMT
  10. Organization: Columbia University
  11. Lines: 28
  12. Message-Id: <46h147$nkn@apakabar.cc.columbia.edu>
  13. References: <46ekdf$bsv@ixnews5.ix.netcom.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <46ekdf$bsv@ixnews5.ix.netcom.com>,
  18. David Pollack  <adldata@ix.netcom.com> wrote:
  19. : C-kermit command files, kept in users current directory, are invoked
  20. : with 'take filname.ext'. The same scripts work on both the DEC VMS and
  21. : unix (aix, osf) platforms. With multiple users and machines, I want to
  22. : keep all take files on a machine in the same directory as the init file
  23. : so that i can get the path name into a macro and invoke them with the
  24. : form 'take \m(pname)flename.tak'. 
  25. How about this:
  26.  
  27.   take \v(inidir)filename.tak
  28.  
  29. \v(inidir) is a built-in variable that holds the pathname of the directory
  30. from which the initialization was (or should have been) executed, framed
  31. suitably for concatenation with a filename, subdirectory name, etc.
  32.  
  33. : How compatible are C-kermit scripts with intel platform kermit. Is
  34. : anything documented on script compatibility with kermit on DOS, Windows
  35. : NT, and OS/2
  36. They are very compatible, despite some differences.  I don't know exactly
  37. how to quantify the degree of compatibility, but we are doing our best to
  38. reconcile the differences -- the later releases of C-Kermit and MS-DOS Kermit
  39. you have, the fewer incompatibilities.  If you have questions about specific
  40. features, feel free to post them.
  41.  
  42. - Frank